home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / exceptions_handler.e < prev    next >
Text File  |  2000-03-25  |  3KB  |  94 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class EXCEPTIONS_HANDLER
  17.    --
  18.    -- Unique global object in charge of EXCEPTION handling.
  19.    --
  20. inherit GLOBALS;
  21.  
  22. creation make
  23.  
  24. feature
  25.  
  26.    used: BOOLEAN;
  27.          -- Indicate wheter the live code uses EXCEPTIONS or not.
  28.  
  29. feature {E_INSPECT}
  30.  
  31.    incorrect_inspect_value(p: POSITION) is
  32.       require
  33.          run_control.no_check
  34.       do
  35.          if used then
  36.             cpp.put_string(
  37.                "internal_exception_handler(Incorrect_inspect_value);%N");
  38.          else
  39.             cpp.put_string("error1(%"Invalid inspect (nothing selected).%",");
  40.             cpp.put_position(p)
  41.             cpp.put_string(fz_14);
  42.          end;
  43.       end;
  44.  
  45. feature {RUN_FEATURE}
  46.  
  47.    set_used is
  48.       do
  49.          used := true;
  50.       end;
  51.  
  52. feature {C_PRETTY_PRINTER}
  53.  
  54.    get_started is
  55.       local
  56.          no_check: BOOLEAN;
  57.       do
  58.          no_check := run_control.no_check;
  59.          if used then
  60.             cpp.sys_runtime_h(fz_exceptions);
  61.             cpp.sys_runtime_c(fz_exceptions);
  62.          end;
  63.       end;
  64.  
  65. feature {C_PRETTY_PRINTER}
  66.  
  67.    initialize_runtime is
  68.       do
  69.          if used then
  70.             cpp.put_string("setup_signal_handler();%N");
  71.          end;
  72.       end;
  73.  
  74.    se_evobt is
  75.       require
  76.          run_control.boost
  77.       do
  78.          if used then
  79.             cpp.put_string("(internal_exception_handler(Void_call_target))");
  80.          else
  81.             cpp.put_string("(se_print_run_time_stack(),exit(1))");
  82.          end;
  83.       end;
  84.  
  85. feature {NONE}
  86.  
  87.    make is
  88.       do
  89.       end;
  90.  
  91.    fz_exceptions: STRING is "exceptions";
  92.  
  93. end -- EXCEPTIONS_HANDLER
  94.